home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / CAPFIRST.HDR < prev    next >
Text File  |  1994-04-25  |  794b  |  37 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Cap_First( cCap_Str ) --> cString
  8.  
  9. PARAMETERS:
  10.  
  11. cCap_Str : string to capitalize
  12.  
  13. SHORT:
  14.  
  15. Return a string with captialized first letters.
  16.  
  17. DESCRIPTION:
  18.  
  19. _Cap_First() will capitalize each first letter that follows a space.
  20.  
  21. NOTE:
  22.  
  23.  
  24.  
  25. EXAMPLE:
  26.  
  27. cString1 = 'now is the time for all good men'
  28. cString2 = _Cap_First(cString1)
  29.  
  30. Result: cString2 = 'Now Is The Time For All Good Men'
  31.  
  32. ? _Cap_First('kirby l. wallace, tulsa ok.')
  33.  
  34. Result: "Kirby L. Wallace, Tulsa Ok."
  35.  
  36. ******************************************************************************/
  37.